body{
    font-family: Arial, sans-serif;
    background-color: whitesmoke;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.entete{
    font-family: Arial, sans-serif;

}
#contenu{
    background-color: whitesmoke;
}

.presentation {
    text-align: center;
    border-bottom: 2px solid #5749eb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bannière-animaux{
  background-color: #e6f4f2;
  padding: 30px 20px;
  text-align: center;
}

.titre-animaux {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.categories-animaux {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.animaux-item {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animaux-item img {
  width: 56px;
  height: 56px;
  border: 2px solid black;
  border-radius: 50%;
  padding: 10px;
  background-color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woopets-item span {
  margin-top: 8px;
}

.woopets-item:hover img {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
